m  =  [9,  15,  24]

def modify(k):
    k.append(39)
    print("k  =",  k)

modify(m)

m

